home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / network / atre12.zip / LF.ZIP / LFEDIT.MAK < prev    next >
Makefile  |  1991-07-05  |  729b  |  32 lines

  1. #makefile for lfedit.c to run under Windows 3.x
  2. #compile under small model assume ds=ss
  3.  
  4. OBJECTS = lf.obj lfedit.obj synan.obj alloca.obj xmalloc.obj lfeditio.obj filedlg.obj
  5. CFLAGS = -O -G -ms -W -H
  6. CPATH = f:\c
  7.  
  8. lfedit.exe : $(OBJECTS) lfedit.def lfedit.res
  9.         bcc $(CFLAGS) -elfedit $(OBJECTS)
  10.         rc lfedit.res
  11.  
  12. lfedit.res : lfedit.rc lf.ico filedlg.dlg lfedit.h
  13.         rc -r -i$(CPATH)\include\ lfedit.rc
  14.  
  15. lf.obj : lf.c lf.h
  16.  
  17. lfedit.obj : lfedit.c lfedit.h
  18.  
  19. lfeditio.obf : lfeditio.c
  20.  
  21. filedlg.obj : filedlg.c filedlg.h
  22.  
  23. synan.obj : synan.c synan.y atree.h
  24.         bcc $(CFLAGS) -DWINDOWS -c synan.c
  25.  
  26. xmalloc.obj: xmalloc.c
  27.  
  28. alloca.obj : alloca.c
  29.  
  30. .c.obj:
  31.         BCC $(CFLAGS) -c $<
  32.